home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 226_01.zip / WORKUP1.H < prev    next >
Text File  |  1993-04-21  |  2KB  |  47 lines

  1.    /*  HEADER:CUG 226;
  2.        TITLE:"ART-CEE";
  3.        VERSION:1.4;
  4.        DESCRIPTION:"Small artificial intelligence inference engine.
  5.  
  6.             ART-CEE is a rule-based general purpose driver capable of working
  7.             with heirarchical and/or propositional information.";
  8.        KEYWORDS:artificial intelligence, inference engines, database;
  9.        SYSTEM:MS-DOS;
  10.        FILENAME:WORKUP1.H;
  11.        SEE-ALSO:WORKUP0.C, WORKUP2.C, WORKUP3.C, WORKUP4.C, MANUAL.TXT,
  12.             WORKUP0.H, HELP1.AIH, HELP2.AIH, HELP3.AIH, HELP4.AIH, ART-CEE.COM;
  13.        AUTHOR:Dan Cheatham;
  14.        COMPILER:MIX-C;
  15.    */
  16.  
  17.  /*  This file defines all global variables for all but the first source */
  18.    /*  file (WORKUP4.C).                                                   */
  19. #define     MAXFILES    20
  20. #define     BUFSIZ      512
  21. #define     EOF         -1
  22. #define     NULL        0
  23. #define     stdin       _iob[0]
  24. #define     stdout      _iob[1]
  25. #define     stderr      _iob[2]
  26. #define     getchar()   getc(stdin)
  27. #define     putchar(c)  putc(c,stdout)
  28.  
  29. typedef struct {
  30.     char    file[32];
  31.     int     fd;
  32. } FILE;
  33.  
  34. extern      FILE        *_iob[MAXFILES];
  35.  
  36. typedef struct {
  37.     int     length;
  38.     char    string[80];
  39. } STRING;
  40.  
  41. /***************************************************************/
  42.     extern    float    dfwd, drev, ff1, ft[MAX][MAX];
  43.     extern    char     indff[80], subjs[MAX][77],   filebuf [81], currfile[32];
  44.     extern    char       menu_sw, oride_sw;
  45.     extern    int      x1, x2, filestat, srchdpth, assumpno;
  46.  
  47.